home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / scrnmasm.arc / EXIT.MAC < prev    next >
Text File  |  1988-11-20  |  327b  |  10 lines

  1. Exit   Macro   ErrorLevel
  2.        IfB <errorLevel>
  3.          Xor AL,AL                     ; Set errorlevel to 0
  4.        Else
  5.          Mov AL,ErrorLevel             ; Get the errorlevel
  6.        EndIf
  7.          Mov AH,4Ch                    ; Function for exit
  8.          Int 21h                       ; Call DOS
  9.        EndM
  10.